Remove index.php from URL in Codeigniter

Remove index.php from URL in Codeigniter

these are following  steps to remove index.php from URL in Codeigniter.
 Step 1
 File Path :-> application/config/config.php
   open config.php and change from
  • $config['index_page'] = "index.php"    to    $config['index_page'] = "";
  • $config['uri_protocol'] ="AUTO";            to    $config['uri_protocol'] = "REQUEST_URI";
 Step 2
  Create .htaccess file in root folder and update content 
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

We are Recommending you:

Leave a comment

Comments